home *** CD-ROM | disk | FTP | other *** search
/ GameStar 1998 November (Bonus) / GAMESTAR11B.ISO / ENCYC99 / MM / T620277A.DCR / Scripts_13_Class LayerTitle.ls < prev    next >
Encoding:
Text File  |  1998-06-29  |  304 b   |  20 lines

  1. property objectRect
  2.  
  3. on areYouThere me, xLoc
  4.   return inside(xLoc, objectRect)
  5. end
  6.  
  7. on mouseEvent me, xEvent, xLoc
  8.   nothing()
  9. end
  10.  
  11. on new me, xSprite
  12.   set objectRect to the rect of sprite xSprite
  13.   return me
  14. end
  15.  
  16. on subscribe me, xCursorGod
  17.   set cursorGod to xCursorGod
  18.   subscribe(cursorGod, me)
  19. end
  20.